home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win2K DHCP Media Sense.xpl < prev    next >
Text File  |  2004-04-28  |  2KB  |  50 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Network\DHCP"
  5. "NAME"="DHCP Media Sense"
  6. "VERSION"="1.02"
  7. "OSVERSION"="0001011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Enable DHCP Media Sense"
  10. "DESCRIPTION 1"="Normally, when you physically disconnect a network cable from your Network Interface Card (NIC) and plug-in it in later on again, Windows will start a DHCP Request (DHCP assigns IP Numbers in a network)."
  11. "DESCRIPTION 2"="This is good for corporate networks since this way people can travel with their Notebooks in different segments of the network without restarting their computer."
  12. "DESCRIPTION 3"="However, when you are using a Broadband Internet Connection and an outage occurs, you can no longer access the Internet even when the connection is up again. This is because Windows will try to sent a DHCP request to the internet, does not get any response and uses the IP Address 0.0.0.0 which can't be used."
  13. "DESCRIPTION 4"="Equals: You are disconnected from the Internet until you reboot your machine."
  14. "DESCRIPTION 5"="To solve this, you can disable the DHCP Media Sense with this plug-in so Window will use the configured IP Address regardless if the connection is up or not."
  15. "DESCRIPTION 6"="WARNING: Do not activate this setting when you want to connect to a corporate network with a DHCP server. You can toggle this setting off or on as many times as you want."
  16. "AUTHOR"="Xteq Systems"
  17. "CONTACTURL"="http://www.xteq.com"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"="C&P from TechRepublic newsletter"
  20.  
  21.  
  22. sV1="HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters\DisableDHCPMediaSense"
  23.  
  24. Sub Plugin_Initialize 
  25.    i=RegReadValue(sV1)
  26.    if i=0 or IsEmpty(i) then
  27.       SetUiElement 1,true
  28.    end if
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  If GetUIElement(1)=true then
  36.     if RegValueExists(sV1) then Call RegDeleteValue(sV1)
  37.  else
  38.     Call RegWriteValue(sV1,"1",2)
  39.  end if
  40.  
  41.  Call Restart
  42. End Sub
  43.  
  44.  
  45. Sub Plugin_Terminate 
  46. End Sub
  47.  
  48.  
  49.  
  50.